home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / perl / 5.10.1 / Digest.pm < prev    next >
Encoding:
Perl POD Document  |  2012-12-11  |  10.2 KB  |  319 lines

  1. package Digest;
  2.  
  3. use strict;
  4. use vars qw($VERSION %MMAP $AUTOLOAD);
  5.  
  6. $VERSION = "1.16";
  7.  
  8. %MMAP = (
  9.   "SHA-1"      => [["Digest::SHA", 1], "Digest::SHA1", ["Digest::SHA2", 1]],
  10.   "SHA-224"    => [["Digest::SHA", 224]],
  11.   "SHA-256"    => [["Digest::SHA", 256], ["Digest::SHA2", 256]],
  12.   "SHA-384"    => [["Digest::SHA", 384], ["Digest::SHA2", 384]],
  13.   "SHA-512"    => [["Digest::SHA", 512], ["Digest::SHA2", 512]],
  14.   "HMAC-MD5"   => "Digest::HMAC_MD5",
  15.   "HMAC-SHA-1" => "Digest::HMAC_SHA1",
  16.   "CRC-16"     => [["Digest::CRC", type => "crc16"]],
  17.   "CRC-32"     => [["Digest::CRC", type => "crc32"]],
  18.   "CRC-CCITT"  => [["Digest::CRC", type => "crcccitt"]],
  19.   "RIPEMD-160" => "Crypt::PIPEMD160",
  20. );
  21.  
  22. sub new
  23. {
  24.     shift;  # class ignored
  25.     my $algorithm = shift;
  26.     my $impl = $MMAP{$algorithm} || do {
  27.     $algorithm =~ s/\W+//g;
  28.     "Digest::$algorithm";
  29.     };
  30.     $impl = [$impl] unless ref($impl);
  31.     my $err;
  32.     for  (@$impl) {
  33.     my $class = $_;
  34.     my @args;
  35.     ($class, @args) = @$class if ref($class);
  36.     no strict 'refs';
  37.     unless (exists ${"$class\::"}{"VERSION"}) {
  38.         my $pm_file = $class . ".pm";
  39.         $pm_file =~ s{::}{/}g;
  40.         eval { require $pm_file };
  41.         if ($@) {
  42.         $err ||= $@;
  43.         next;
  44.         }
  45.     }
  46.     return $class->new(@args, @_);
  47.     }
  48.     die $err;
  49. }
  50.  
  51. sub AUTOLOAD
  52. {
  53.     my $class = shift;
  54.     my $algorithm = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
  55.     $class->new($algorithm, @_);
  56. }
  57.  
  58. 1;
  59.  
  60. __END__
  61.  
  62. =head1 NAME
  63.  
  64. Digest - Modules that calculate message digests
  65.  
  66. =head1 SYNOPSIS
  67.  
  68.   $md5  = Digest->new("MD5");
  69.   $sha1 = Digest->new("SHA-1");
  70.   $sha256 = Digest->new("SHA-256");
  71.   $sha384 = Digest->new("SHA-384");
  72.   $sha512 = Digest->new("SHA-512");
  73.  
  74.   $hmac = Digest->HMAC_MD5($key);
  75.  
  76. =head1 DESCRIPTION
  77.  
  78. The C<Digest::> modules calculate digests, also called "fingerprints"
  79. or "hashes", of some data, called a message.  The digest is (usually)
  80. some small/fixed size string.  The actual size of the digest depend of
  81. the algorithm used.  The message is simply a sequence of arbitrary
  82. bytes or bits.
  83.  
  84. An important property of the digest algorithms is that the digest is
  85. I<likely> to change if the message change in some way.  Another
  86. property is that digest functions are one-way functions, that is it
  87. should be I<hard> to find a message that correspond to some given
  88. digest.  Algorithms differ in how "likely" and how "hard", as well as
  89. how efficient they are to compute.
  90.  
  91. Note that the properties of the algorithms change over time, as the
  92. algorithms are analyzed and machines grow faster.  If your application
  93. for instance depends on it being "impossible" to generate the same
  94. digest for a different message it is wise to make it easy to plug in
  95. stronger algorithms as the one used grow weaker.  Using the interface
  96. documented here should make it easy to change algorithms later.
  97.  
  98. All C<Digest::> modules provide the same programming interface.  A
  99. functional interface for simple use, as well as an object oriented
  100. interface that can handle messages of arbitrary length and which can
  101. read files directly.
  102.  
  103. The digest can be delivered in three formats:
  104.  
  105. =over 8
  106.  
  107. =item I<binary>
  108.  
  109. This is the most compact form, but it is not well suited for printing
  110. or embedding in places that can't handle arbitrary data.
  111.  
  112. =item I<hex>
  113.  
  114. A twice as long string of lowercase hexadecimal digits.
  115.  
  116. =item I<base64>
  117.  
  118. A string of portable printable characters.  This is the base64 encoded
  119. representation of the digest with any trailing padding removed.  The
  120. string will be about 30% longer than the binary version.
  121. L<MIME::Base64> tells you more about this encoding.
  122.  
  123. =back
  124.  
  125.  
  126. The functional interface is simply importable functions with the same
  127. name as the algorithm.  The functions take the message as argument and
  128. return the digest.  Example:
  129.  
  130.   use Digest::MD5 qw(md5);
  131.   $digest = md5($message);
  132.  
  133. There are also versions of the functions with "_hex" or "_base64"
  134. appended to the name, which returns the digest in the indicated form.
  135.  
  136. =head1 OO INTERFACE
  137.  
  138. The following methods are available for all C<Digest::> modules:
  139.  
  140. =over 4
  141.  
  142. =item $ctx = Digest->XXX($arg,...)
  143.  
  144. =item $ctx = Digest->new(XXX => $arg,...)
  145.  
  146. =item $ctx = Digest::XXX->new($arg,...)
  147.  
  148. The constructor returns some object that encapsulate the state of the
  149. message-digest algorithm.  You can add data to the object and finally
  150. ask for the digest.  The "XXX" should of course be replaced by the proper
  151. name of the digest algorithm you want to use.
  152.  
  153. The two first forms are simply syntactic sugar which automatically
  154. load the right module on first use.  The second form allow you to use
  155. algorithm names which contains letters which are not legal perl
  156. identifiers, e.g. "SHA-1".  If no implementation for the given algorithm
  157. can be found, then an exception is raised.
  158.  
  159. If new() is called as an instance method (i.e. $ctx->new) it will just
  160. reset the state the object to the state of a newly created object.  No
  161. new object is created in this case, and the return value is the
  162. reference to the object (i.e. $ctx).
  163.  
  164. =item $other_ctx = $ctx->clone
  165.  
  166. The clone method creates a copy of the digest state object and returns
  167. a reference to the copy.
  168.  
  169. =item $ctx->reset
  170.  
  171. This is just an alias for $ctx->new.
  172.  
  173. =item $ctx->add( $data )
  174.  
  175. =item $ctx->add( $chunk1, $chunk2, ... )
  176.  
  177. The string value of the $data provided as argument is appended to the
  178. message we calculate the digest for.  The return value is the $ctx
  179. object itself.
  180.  
  181. If more arguments are provided then they are all appended to the
  182. message, thus all these lines will have the same effect on the state
  183. of the $ctx object:
  184.  
  185.   $ctx->add("a"); $ctx->add("b"); $ctx->add("c");
  186.   $ctx->add("a")->add("b")->add("c");
  187.   $ctx->add("a", "b", "c");
  188.   $ctx->add("abc");
  189.  
  190. Most algorithms are only defined for strings of bytes and this method
  191. might therefore croak if the provided arguments contain chars with
  192. ordinal number above 255.
  193.  
  194. =item $ctx->addfile( $io_handle )
  195.  
  196. The $io_handle is read until EOF and the content is appended to the
  197. message we calculate the digest for.  The return value is the $ctx
  198. object itself.
  199.  
  200. The addfile() method will croak() if it fails reading data for some
  201. reason.  If it croaks it is unpredictable what the state of the $ctx
  202. object will be in. The addfile() method might have been able to read
  203. the file partially before it failed.  It is probably wise to discard
  204. or reset the $ctx object if this occurs.
  205.  
  206. In most cases you want to make sure that the $io_handle is in
  207. "binmode" before you pass it as argument to the addfile() method.
  208.  
  209. =item $ctx->add_bits( $data, $nbits )
  210.  
  211. =item $ctx->add_bits( $bitstring )
  212.  
  213. The add_bits() method is an alternative to add() that allow partial
  214. bytes to be appended to the message.  Most users should just ignore
  215. this method as partial bytes is very unlikely to be of any practical
  216. use.
  217.  
  218. The two argument form of add_bits() will add the first $nbits bits
  219. from $data.  For the last potentially partial byte only the high order
  220. C<< $nbits % 8 >> bits are used.  If $nbits is greater than C<<
  221. length($data) * 8 >>, then this method would do the same as C<<
  222. $ctx->add($data) >>.
  223.  
  224. The one argument form of add_bits() takes a $bitstring of "1" and "0"
  225. chars as argument.  It's a shorthand for C<< $ctx->add_bits(pack("B*",
  226. $bitstring), length($bitstring)) >>.
  227.  
  228. The return value is the $ctx object itself.
  229.  
  230. This example shows two calls that should have the same effect:
  231.  
  232.    $ctx->add_bits("111100001010");
  233.    $ctx->add_bits("\xF0\xA0", 12);
  234.  
  235. Most digest algorithms are byte based and for these it is not possible
  236. to add bits that are not a multiple of 8, and the add_bits() method
  237. will croak if you try.
  238.  
  239. =item $ctx->digest
  240.  
  241. Return the binary digest for the message.
  242.  
  243. Note that the C<digest> operation is effectively a destructive,
  244. read-once operation. Once it has been performed, the $ctx object is
  245. automatically C<reset> and can be used to calculate another digest
  246. value.  Call $ctx->clone->digest if you want to calculate the digest
  247. without resetting the digest state.
  248.  
  249. =item $ctx->hexdigest
  250.  
  251. Same as $ctx->digest, but will return the digest in hexadecimal form.
  252.  
  253. =item $ctx->b64digest
  254.  
  255. Same as $ctx->digest, but will return the digest as a base64 encoded
  256. string.
  257.  
  258. =back
  259.  
  260. =head1 Digest speed
  261.  
  262. This table should give some indication on the relative speed of
  263. different algorithms.  It is sorted by throughput based on a benchmark
  264. done with of some implementations of this API:
  265.  
  266.  Algorithm      Size    Implementation                  MB/s
  267.  
  268.  MD4            128     Digest::MD4 v1.3               165.0
  269.  MD5            128     Digest::MD5 v2.33               98.8
  270.  SHA-256        256     Digest::SHA2 v1.1.0             66.7
  271.  SHA-1          160     Digest::SHA v4.3.1              58.9
  272.  SHA-1          160     Digest::SHA1 v2.10              48.8
  273.  SHA-256        256     Digest::SHA v4.3.1              41.3
  274.  Haval-256      256     Digest::Haval256 v1.0.4         39.8
  275.  SHA-384        384     Digest::SHA2 v1.1.0             19.6
  276.  SHA-512        512     Digest::SHA2 v1.1.0             19.3
  277.  SHA-384        384     Digest::SHA v4.3.1              19.2
  278.  SHA-512        512     Digest::SHA v4.3.1              19.2
  279.  Whirlpool      512     Digest::Whirlpool v1.0.2        13.0
  280.  MD2            128     Digest::MD2 v2.03                9.5
  281.  
  282.  Adler-32        32     Digest::Adler32 v0.03            1.3
  283.  CRC-16          16     Digest::CRC v0.05                1.1
  284.  CRC-32          32     Digest::CRC v0.05                1.1
  285.  MD5            128     Digest::Perl::MD5 v1.5           1.0
  286.  CRC-CCITT       16     Digest::CRC v0.05                0.8
  287.  
  288. These numbers was achieved Apr 2004 with ActivePerl-5.8.3 running
  289. under Linux on a P4 2.8 GHz CPU.  The last 5 entries differ by being
  290. pure perl implementations of the algorithms, which explains why they
  291. are so slow.
  292.  
  293. =head1 SEE ALSO
  294.  
  295. L<Digest::Adler32>, L<Digest::CRC>, L<Digest::Haval256>,
  296. L<Digest::HMAC>, L<Digest::MD2>, L<Digest::MD4>, L<Digest::MD5>,
  297. L<Digest::SHA>, L<Digest::SHA1>, L<Digest::SHA2>, L<Digest::Whirlpool>
  298.  
  299. New digest implementations should consider subclassing from L<Digest::base>.
  300.  
  301. L<MIME::Base64>
  302.  
  303. http://en.wikipedia.org/wiki/Cryptographic_hash_function
  304.  
  305. =head1 AUTHOR
  306.  
  307. Gisle Aas <gisle@aas.no>
  308.  
  309. The C<Digest::> interface is based on the interface originally
  310. developed by Neil Winton for his C<MD5> module.
  311.  
  312. This library is free software; you can redistribute it and/or
  313. modify it under the same terms as Perl itself.
  314.  
  315.     Copyright 1998-2006 Gisle Aas.
  316.     Copyright 1995,1996 Neil Winton.
  317.  
  318. =cut
  319.